SAVE ARRAY
This command will save the contents of the array to the specified file.
SAVE ARRAY Filename, Array Name(0)
Filename
String
Specify a relative or absolute filename to the required file.
Array Name(0
Integer
A value between 0 and 2415919103.
This command does not return a value.
It is highly recommended that the array used to save the data should be identical to the one used when reloading. When specifying the array name, the array index numbers are ignored, but you must still provide them to ensure the array is recognized.
DIM data(10)
data(5)=123
SAVE ARRAY "array.arr",data()
data(5)=0
LOAD ARRAY "array.arr",data()
print data(5)
WAIT KEY
CORE Commands Menu
Index